@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap');
/* ページ内リンクの移動を滑らかに */
html {
  scroll-behavior: smooth;
  font-family: 'Noto Sans JP', "sans-serif", Meiryo;
}

.f_kakugo{
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, "sans-serif";
}

.cp_cont{
  display: none;
}

/*コンポーネント*/
.mt_0{margin-top: 0px;}
.mt_1{margin-top: 1em;}
.mt_10{margin-top: 10px;}
.mt_20{margin-top: 20px;}
.mt_30{margin-top: 30px;}
.mt_40{margin-top: 40px;}
.mt_50{margin-top: 50px;}
.mt_60{margin-top: 60px;}
.mt_70{margin-top: 70px;}
.mt_80{margin-top: 80px;}
.mt_90{margin-top: 90px;}
.mt_100{margin-top: 100px;}
.mt_110{margin-top: 110px;}
.center{
  text-align: center;
}
.f_min{
  font-family: 'Noto Serif JP', serif, Meiryo;
}
.lh_2{
  line-height: 2;
}
.bg_gray {
    background: #F0F0F0;
}
.indent{
  text-indent: -1em;
  padding-left: 1em;
}
.indent_2{
  text-indent: -2em;
  padding-left: 2em;
}
.sp_br{
  display: none;
}
.text-wrap{
  display: inline-block
}
.red{
  color: #c00;
}
.white{
  color: #fff;
}
.green{
  color: #31705a;
}
.bold{
  font-weight: bold;
}
.center{
  text-align: center;
}
.anc_point{
  position: absolute;
  top: -100px;
}
.bg_grad{
  background: transparent linear-gradient(90deg, #009441 0%, #218B7F 100%) 0% 0% no-repeat padding-box;
}
.indent{
  text-indent: -1em;
  padding-left: 1em;
}
.indent_2{
  text-indent: -2em;
  padding-left: 2em;
}
.indent_3{
  text-indent: -3em;
  padding-left: 3em;
}
.indent_4{
  text-indent: -4em;
  padding-left: 4em;
}
.indent_5{
  text-indent: -5em;
  padding-left: 5em;
}
.indent_6{
  text-indent: -6em;
  padding-left: 6em;
}
.indent_7{
  text-indent: -7em;
  padding-left: 7em;
}
.indent_8{
  text-indent: -8em;
  padding-left: 8em;
}
.indent_9{
  text-indent: -9em;
  padding-left: 9em;
}
/* アニメーション
======================================================= */
.fade{
    opacity: 0;
    transition:ease-out 0.5s;
}
.fade.fade--left{
    transform: translate(-100px,0)
}
.fade.fade--right{
    transform: translate(100px,0)
}
.fade.fade--bot{
    transform: translate(0,100px)
}
.fade.scrollin{
    opacity: 1;
    transform: translate(0,0);
}

.fade.fade--list{
    opacity: 1;
}
.fade.fade--list .fade_child{
    opacity: 0;
    transition:ease-out 0.5s;
    transform: translate(0,100px)
}
.fade.fade--list.scrollin .fade_child{
    opacity: 1;
    transform: translate(0,0);
}

.fade.fade--list .fade_child:nth-child(1){
    transition-delay: 0.0s;
}
.fade.fade--list .fade_child:nth-child(2){
    transition-delay: 0.15s;
}
.fade.fade--list .fade_child:nth-child(3){
    transition-delay: 0.3s;
}
.fade.fade--list .fade_child:nth-child(4){
    transition-delay: 0.45s;
}
.fade.fade--list .fade_child:nth-child(5){
    transition-delay: 0.6s;
}
.fade.fade--list .fade_child:nth-child(6){
    transition-delay: 0.75s;
}
.fade.fade--list .fade_child:nth-child(7){
    transition-delay: 0.9s;
}
.fade.fade--list .fade_child:nth-child(8){
    transition-delay: 1.05s;
}
.fade.fade--list .fade_child:nth-child(9){
    transition-delay: 1.2s;
}
.fade.fade--list .fade_child:nth-child(10){
    transition-delay: 1.35s;
}
/*header*/
header {
    position: relative;
    z-index: 5;
}
.hd_inner {
    display: flex;
    justify-content: space-between;
    padding-left: 40px;
    background: rgba(255,255,255,.85);
    position: fixed;
    width: 100%;
    top: 5px;
    left: 0;
}
.hd_inner::before {
  content: '';
  background: transparent linear-gradient(90deg, #009441 0%, #218B7F 100%) 0% 0% no-repeat padding-box;
  display: block;
  width: 100%;
  height: 5px;
  position: absolute;
  top: -5px;
  left: 0;
}
.hd_logo {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.hd_head {
    display: flex;
    gap: 40px;
    padding: 8px 30px;
    background: #fff;
}
.hd_link a {
    color: #31705A;
    letter-spacing: 1px;
}
.hd_nav {
    display: flex;
    justify-content: flex-end;
    gap: 35px;
    padding: 0px 30px;
}
.hd_item a {
    font-size: 1.8rem;
    font-weight: bold;
    color: #000000;
    letter-spacing: 1px;
  display: inline-block;
  padding: 15px 0;
}
.hd_item {
    position: relative;
}
.hd_mega {
    position: absolute;
    left: -20px;
    top: 57px;
    width: 340px;
    background: #fff;
    overflow: hidden;
}
.hd_mega {
  opacity: 0;
  transition: .4s;
}
.hd_item:hover .hd_mega {
  opacity: 1;
}
.hd_child a {
    padding: 0 20px;
    line-height: 1;
  transition: .3s;
}
.hd_item:hover .hd_child a {
    padding: 10px 20px;
    line-height: 1.5;
  background: #fff;
}
/*pankuzu*/
.pankuzu {
    width: 100%;
}
.pankuzu_list {
    display: flex;
  justify-content: center;
    align-items: baseline;
    font-size: 1.4rem;
    flex-wrap: wrap;
    padding: 20px 5% 0;
}
.pankuzu_item {
    padding: 0 20px;
    color: #05626D;
}
.pankuzu_item.under_contents {
    position: relative;
}
.pankuzu_item.under_contents::before {
    content: url("/eco/common/img/arrow_pankuzu.svg");
    color: #05626D;
    position: absolute;
    left: 0px;
}
.pankuzu_item a {
    color: #05626D;
  text-decoration: underline;
}
.pankuzu_item a:hover {
    color: #05626D;
  text-decoration: none;
}
/*レイアウト*/
.under_mv {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 356px;
    background: #cdc;
    padding-top: 97px;
}
.page_title {
    font-size: 4.8rem;
    color: #FFFFFF;
    text-shadow: 0px 0px 10px #000000;
    letter-spacing: 4px;
}
.page_head.bg_grad {
    padding: 55px 0;
    margin-top: 55px;
}
.page_topic {
    margin: auto;
    max-width: 1024px;
    width: 90%;
    color: #FFFFFF;
    font-size: 4rem;
}
.page_topic--sub {
    display: flex;
    font-size: 1.6rem;
    font-weight: normal;
    margin-top: 15px;
}
.page_sec {
  padding: 60px 0;
}
.page_sec.even {
  background: #F0F0F0;
}
.page_inner {
    max-width: 1024px;
    width: 90%;
    margin: auto;
  position: relative;
}
.page_midashi {
    margin: 0;
    font-size: 2.8rem;
    font-weight: bold;
    color: #31705A;
    padding-bottom: 10px;
    position: relative;
}
.page_midashi::after{
  content: '';
  background: transparent linear-gradient(90deg, #009441 0%, #218B7F 100%) 0% 0% no-repeat padding-box;
  display: block;
  width: 100%;
  height: 3px;
  position: absolute;
  left: 0;
  bottom: 0;
} 
.page_cont {
    margin-top: 40px;
}
.bot_nav {
    padding: 65px 0;
}
.nav_inner {
    max-width: 1024px;
    width: 90%;
    margin: auto;
}
.nav_tit {
    font-size: 2rem;
    font-weight: bold;
    color: #31705A;
}
.nav_list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}
.nav_col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.nav_item {
    color: #31705A;
  position: relative;
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  padding-left: 17px;
}
/*back_top*/
#page_top {
  width: 56px;
  height: 56px;
  position: fixed;
  bottom: -500px;
  opacity: 1;
    right: calc(3% + 20px);
  z-index: 40;
  background: url("/eco/common/img/btn-pagetop.svg") no-repeat center;
  -webkit-background-size: contain;
  background-size: contain;
  border-radius: 50%;
  box-shadow: 5px 5px 10px #0000001A;
}
#page_top a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/*/back_top*/

/*footer*/

footer{
}
.ft_inner {
}
.ft_flex {
    max-width: 1024px;
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    padding: 100px 0 150px;
}
.ft_name {
    font-size: 2rem;
    font-weight: bold;
    color: #FFFFFF;
}
.ft_info {
    color: #fff;
    margin-top: 20px;
}
.ft_col {
    display: flex;
    flex-direction: column;
    padding: 3px 40px;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
}
a.ft_item {
    color: #fff;
}
.copyright {
    display: flex;
  justify-content: center;
    align-items: center;
  text-align: center;
    width: 100%;
  padding: 20px ;
}
.copyright small {
    font-size: 1.4rem;
    letter-spacing: 1.1px;
    color: #000;
}
/*/footer*/

@media screen and (max-width: 1279px) {
/* 推奨動作環境1280pxに固定 */
  body {
    width: 1280px;
  }
}

@media screen and (min-width: 768px) {
/* PCの場合はtelリンクを無効 */
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

@media screen and (max-width: 767px) {
/* スマホ閲覧時、横幅可変 */
  body {
    width: 100%;
  }
  .pc_br{
  display: none;
  }
  .sp_br{
  display: block;
  }
  
/*header*/
header{
}
.hd_inner {
    padding: 0 5%;
    padding-right: 64px;
    height: 60px;
}
.hd_logo {
    max-width: 300px;
}
.hd_right {
    display: none;
}
.cp_cont {
    display: flex;
    z-index: 5;
    height: 70px;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    max-width: 25%;
    width: 100%;
    right: 0;
}
  .cp_cont *,
  .cp_cont *:before,
  .cp_cont *:after {
    padding: 0;
    margin: 0;
  }
.cp_logo {
    max-height: 50px;
    display: flex;
    align-items: center;
}
.cp_logo a,
.cp_logo img {
    max-height: 50px;
  width: auto;
    display: flex;
    align-items: center;
}
  .cp_offcm01 {
    position: absolute;
    top: 0px;
    right: 0px;
    display: inline-block;
    z-index: 99999;
  }
  /* menu */
  .cp_offcm01 .cp_menu {
    position: fixed;
    top: 0;
    right: -100vw;
    width: 300px;
    height: 100%;
    cursor: pointer;
    -webkit-transition: 0.4s transform;
    transition: 0.4s transform;
    background-color: #ffffff;
    opacity: 1;
    z-index: 99999;
  }
  .cp_offcm01 .cp_menu ul.ff_ul {
    margin-top: 35px;
    padding: 0;
    padding-bottom: 15px;
  }
.cp_lang a {
    background: #fff;
    color: #000;
    font-weight: bold;
    font-size: 1.4rem;
    padding: 3px 10px;
    margin: 0 15px 60px;
    display: inline-block;
}
  .cp_offcm01 .cp_menu li.pshm_title {
    padding: 35px 20px 13px;
    color: #fff;
    height: 33px;
  }
  .cp_offcm01 .cp_menu ul.ff_ul li.ff_li a {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    color: #000;
    border-bottom: 1px solid #ccc;
    font-weight: bold;
    font-size: 1.5rem;
  }
  .cp_offcm01 .cp_menu ul.ff_ul li.ff_li .ac_radio {
    display: none;
  }
  .cp_offcm01 .cp_menu ul.ff_ul li.ff_li ul.sf_ul {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0s ease-in;
  }
  .cp_offcm01 .cp_menu ul.ff_ul li.ff_li .ac_radio:checked + ul.sf_ul {
    max-height: 9999px;
    transition: max-height 1s ease-in;
  }
  .cp_offcm01 .cp_menu ul.ff_ul li.ff_li ul.sf_ul li.sf_li a {
    padding: 5px 15px 5px 45px;
    text-decoration: none;
    color: #ffffff;
    border-bottom: 1px dashed #e6e6e6;
    background: #686c77;
}
  .cp_offcm01 .cp_menu ul.ff_ul li.ff_li ul.sf_ul li.sf_li:last-child a {
    border-bottom: none;
  }
  .cp_offcm01 #cp_toggle01 {
    position: absolute;
    display: none;
    opacity: 0;
  }
  .cp_offcm01 #cp_toggle01:checked ~ .cp_menu {
    -webkit-transform: translateX(-100vw);
    transform: translateX(-100vw);
    overflow-y: auto;
    -webkit-box-shadow: -8px 0px 8px -1px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: -8px 0px 8px -1px rgba(0, 0, 0, 0.2);
    box-shadow: -8px 0px 8px -1px rgba(0, 0, 0, 0.2);
  }

  /* menu toggle */
  .cp_offcm01 #cp_toggle01 ~ label {
    position: relative;
    z-index: 999999;
    display: block;
    height: 60px;
    width: 60px;
    cursor: pointer;
    -webkit-transition: 0.4s transform;
    transition: 0.4s transform;
    text-align: center;
    color: #fff;
    top: -10px;
    margin: 0 auto;
  }
.cp_offcm01 #cp_toggle01 ~ label::before, .cp_offcm01 #cp_toggle01:checked ~ label::before {
    content: "MENU";
    vertical-align: middle;
    display: inline-block;
    color: #000;
    bottom: -3px;
    left: 0;
    position: absolute;
    width: 100%;
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
}
.cp_offcm01 #cp_toggle01:checked ~ label::before {
    content: "CLOSE";
}
  .cp_offcm01,
  .cp_offcm01 span {
    display: inline-block;
    transition: all 0.4s;
    box-sizing: border-box;
  }
.cp_offcm01 {
    position: fixed;
    right: 0px;
    top: 5px;
    width: 60px;
    height: 60px;
    padding: 0;
    background-color: #ffffff;
}
  .cp_offcm01 span {
    position: absolute;
    right: auto;
    left: 12px;
    width: 36px;
    border-radius: 1px;
    height: 2px;
    background:transparent linear-gradient(90deg, #009441 0%, #218B7F 100%) 0% 0% no-repeat padding-box;
  }
  .cp_offcm01 span:nth-of-type(1) {
    top: 22px;
  }
  .cp_offcm01 span:nth-of-type(2) {
    top: 30px;
  }
  .cp_offcm01 span:nth-of-type(3) {
    top: 38px;
  }
  .cp_offcm01 #cp_toggle01:checked ~ label span:nth-of-type(1) {
    -webkit-transform: translateY(20px) rotate(-45deg);
    transform: translateY(20px) rotate(-45deg);
    background-color: #009D39;
    top: 10px;
  }
  .cp_offcm01 #cp_toggle01:checked ~ label span:nth-of-type(2) {
    opacity: 0;
    background-color: #000;
  }
  .cp_offcm01 #cp_toggle01:checked ~ label span:nth-of-type(3) {
    -webkit-transform: translateY(-20px) rotate(45deg);
    transform: translateY(-20px) rotate(45deg);
    background-color: #009D39;
    top: 50px;
  }
  
.cp_offcm01 .cp_menu ul.ff_ul li.ff_switch .ff_name {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    color: #fff;
    border-bottom: 1px solid #ccc;
    font-weight: bold;
    font-size: 1.5rem;
    position: relative;
}
.cp_offcm01 .cp_menu ul.ff_ul li.ff_switch .ff_name::after {
    content: '';
    position: absolute;
    display: block;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    top: calc(50% - 5px);
    right: 25px;
    transform: rotate(45deg);
  transition: .3s;
}
#ff_name:checked ~ .ff_name::after {
    transform: rotate(-135deg);
}
li.ff_child a {
    display: flex;
    padding: 0px 30px;
  line-height: 0;
  overflow: hidden;
  border-bottom: 0px solid #fff;
    font-size: 1.4rem;
    background: #aaa;
    color: #000;
  transition: padding .3s,line-height .3s;
}
#ff_name {
     display: none; 
}
#ff_name:checked ~ ul li.ff_child a {
    padding: 10px 30px;
  line-height: 1.2;
  border-bottom: 1px solid #fff;
}

/*レイアウト*/
.under_mv {
    min-height: 250px;
    padding-top: 60px;
}
.page_title {
    font-size: 3.2rem;
    padding: 0 5%;
}
.page_head {
    padding: 40px 0;
}
.page_topic {
    font-size: 2.8rem;
}
.page_midashi {
    font-size: 2.4rem;
}
.page_scroll {
    width: 100%;
    overflow: scroll;
}
/*下層ページ*/
.pankuzu_list {
    width: 100%;
    margin: auto;
}



/*footer*/
#page_top {
    right: calc(3% + 8px);
}
.ft_flex {
    flex-direction: column;
    gap: 20px;
    padding: 80px 0;
    align-items: center;
}
.copyright small {
    display: inline-block;
    font-size: 1.2rem;
    line-height: 2;
    text-align: center;
}
}

/* 印刷用設定 */
@media print {
  body {
    width:1280px;
    zoom: 0.68;
    -webkit-print-color-adjust: exact;
  }
  .pc_header {
    position: absolute;
  }
  #page_top,.ft_contact,.ft_catalog {
    display: none;
}

.hd_inner {
    position: relative;
}
}
@page {
  size: A4;
  margin: 5px;
}
